home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / comm / tcp / DynamicIP.lha / Dial.scp next >
Text File  |  1994-12-28  |  685b  |  32 lines

  1. @ Dial.scp (28-Dec-94)
  2. @ Dial into a SLIP account.
  3. @ IanSmith@psu.edu (Ian M. Smith)
  4. @
  5. @ The script below will need to be edited to fit your specific
  6. @ dialup system.
  7.  
  8.  
  9. parity 8N1
  10. baud 57600
  11.  
  12. send "ATZ*R"   @ Initalize modem
  13. wait "ok"
  14. send "AT&D0"   @ This disables DTR
  15. wait "ok"
  16.  
  17. send "ATDT???-????*R"   @ Insert phone number here
  18. wait "login:"
  19. send "*R"               @ Insert username here
  20. wait "Password:"
  21. send "*R"               @ Insert password here
  22. wait "choice:"          @ Change these
  23. send "slip*R"           @  as needed
  24. capture "AmiTCP:Slip.Data"
  25. wait "Gateway"
  26. delay 1
  27. capture OFF
  28. SERialdevice NONE
  29. @AmiTCP:Online.Rexx     @ Call the Online.Rexx script
  30. delay 10
  31. exit VLT
  32.